home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 93 / CDMM_93_2.ISO / Project Nomads / nomads_demo_eng.exe / SCRIPTLIB.TCL < prev    next >
Encoding:
Text File  |  2002-08-06  |  46.6 KB  |  1,422 lines

  1. #-------------------------------------------------------------------------------
  2. #   scriptlib.tcl
  3. #   =============
  4. #   Implement the command set for the story scripting.
  5. #
  6. #   (C) 2001,2002 RadonLabs GmbH
  7. #-------------------------------------------------------------------------------
  8.  
  9. #-------------------------------------------------------------------------------
  10. #   Global variables
  11. #-------------------------------------------------------------------------------
  12. set curBook ""
  13. set curBookDir ""
  14.  
  15. set curChapter ""
  16. set curChapterDir ""
  17.  
  18. set curPart ""
  19. set curPartDir ""
  20.  
  21. #-------------------------------------------------------------------------------
  22. #   on_bookfinished
  23. #   
  24. #   This procedure is called by the book handler when the last part
  25. #   has been finished.
  26. #
  27. #   This procedure call the nm_reallykillgame procedure defined in
  28. #   newmenu.tcl.
  29. #-------------------------------------------------------------------------------
  30. proc on_bookfinished {} {
  31.     nm_thanxforplaying
  32. }
  33.  
  34. #-------------------------------------------------------------------------------
  35. #   book [body]
  36. #
  37. #   Define a book. Inside the book only 'loadchapter' statements should
  38. #   appear.
  39. #-------------------------------------------------------------------------------
  40. proc book {body} {
  41. global curBook
  42. global curBookDir
  43.     set curBookDir [/sys/servers/file.manglepath "book:"]
  44.     eval $body
  45. }
  46.  
  47. #-------------------------------------------------------------------------------
  48. #   loadchapter [dirname]
  49. #
  50. #   This takes the name of a subdirectory and simply sources
  51. #   the story.tcl file in this directory. This story.tcl file should
  52. #   contain a single 'chapter' statement.
  53. #-------------------------------------------------------------------------------
  54. proc loadchapter {dirname} {
  55. global curBookDir
  56. global curChapterDir
  57.  
  58. #    puts "-> loadchapter $dirname"
  59.  
  60.     set curChapterDir ""
  61.     append curChapterDir "$curBookDir" "$dirname"
  62.  
  63.     set cwd [pwd]
  64.     set dir [/sys/servers/file.manglepath $curChapterDir]
  65.     cd $dir
  66.     source story.tcl
  67.     cd $cwd
  68.  
  69. #    puts "<- loadchapter"
  70. }
  71.  
  72. #-------------------------------------------------------------------------------
  73. #   loadpart [dirname]
  74. #
  75. #   This takes the name of a subdirectory and simply source the
  76. #   story.tcl file in this directory. This story.tcl file should
  77. #   contain a single 'part' statement.
  78. #-------------------------------------------------------------------------------
  79. proc loadpart {dirname} {
  80. global curChapterDir
  81. global curPartDir
  82.  
  83. #    puts "-> loadpart $dirname"
  84.  
  85.     set curPartDir ""
  86.     append curPartDir "$curChapterDir" "/" "$dirname"
  87.     
  88.     set cwd [pwd]
  89.     set dir [/sys/servers/file.manglepath $curPartDir]
  90.     cd $dir
  91.     source story.tcl
  92.     cd $cwd
  93.  
  94. #    puts "<- loadpart"
  95. }
  96.  
  97. #-------------------------------------------------------------------------------
  98. #   chapter [name] [body]
  99. #
  100. #   Define a chapter. A chapter should consist of only 'loadpart' statements.
  101. #-------------------------------------------------------------------------------
  102. proc chapter {name body} {
  103. global curChapter
  104.  
  105. #    puts "-> chapter $name"
  106.  
  107.     # set global chapter variable and just execute the body
  108.     # which will actually call several 'loadpart' statements
  109.     set curChapter $name
  110.     eval $body
  111.  
  112. #    puts "<- chapter"
  113. }
  114.     
  115. #-------------------------------------------------------------------------------
  116. #   part [name] [body]
  117. #
  118. #   Define a part with its activation Tcl code. The body should only
  119. #   contain event handlers ('on' statements).
  120. #-------------------------------------------------------------------------------
  121. proc part {name body} {
  122. global curChapter
  123. global curPart
  124. global curPartDir
  125.  
  126. #    puts "-> part $name"
  127.  
  128.     set curPart $name
  129.  
  130.     # build a unique part name from the chapter name and the part
  131.     # name and register the part handler code with the book handler
  132.     set partName ""
  133.     append partName "$curChapter" "_" "$curPart"
  134.     /game/handler/book.registerpart $partName $curPartDir $body
  135.  
  136. #    puts "<- part"
  137. }
  138.  
  139. #-------------------------------------------------------------------------------
  140. #   on [event0] [and|or] [event1] [body]
  141. #
  142. #   Define an event handler for one or two events. The body is executed
  143. #   when the one or two events are triggered (in the case of two events,
  144. #   they can be "and" or "or" connected).
  145. #
  146. #   Implementation details:
  147. #   The procedure will create a Tcl procedure called "event_handler_$uniqueId"
  148. #   which is registered with the global nEventHandler object. The event handler
  149. #   will be called when the events are triggered by the event handler.
  150. #
  151. #-------------------------------------------------------------------------------
  152. proc on {args} {
  153.  
  154. #    puts "-> on $args"
  155.     
  156.     # num args can either be 3 or 6 (depends whether one or 2 events are given)
  157.     if {[llength $args] == 2} {
  158.  
  159.         set event0 [lindex $args 0]
  160.         set body [lindex $args 1]
  161.  
  162.         # add the event handler
  163.         /game/handler/event.addhandler $body $event0
  164.  
  165.     } elseif {[llength $args] == 4} {
  166.  
  167.         set event0 [lindex $args 0]
  168.         set opcode [lindex $args 1]
  169.         set event1 [lindex $args 2]
  170.         set body   [lindex $args 3]
  171.  
  172.         # add the event handler
  173.         /game/handler/event.addhandler2 $body $event0 $opcode $event1 
  174.  
  175.     } else {
  176.         # syntax error
  177.         puts "WRONG NUMBER OF ARGS IN PROC 'on $args'"
  178.         exit
  179.     }
  180.  
  181. #    puts "<- args"
  182. }
  183.  
  184. #-------------------------------------------------------------------------------
  185. #   loadencounter [filename] [as symbolicName] [pos x y z]
  186. #
  187. #   Loads an encounter inside a part, optionally gives it a symbolic name
  188. #   for later reference and places it at a position. The actual filename of the
  189. #   encounter is generated as follos:
  190. #
  191. #   $currentPartDir/encounters/$filename
  192. #
  193. #   The current part dir is requested from the book hander
  194. #-------------------------------------------------------------------------------
  195. proc loadencounter {filename args} {
  196.  
  197. #    puts "-> loadencounter $filename $args"
  198.  
  199.     # extract optional data
  200.     set numArgs [llength $args]
  201.     set symbolicName ""
  202.     set hasPos 0
  203.     set xPos 0
  204.     set yPos 0
  205.     set zPos 0
  206.     if {$numArgs > 0} {
  207.  
  208.         for {set curArg 0} {$curArg < $numArgs} {incr curArg} {
  209.             if {[lindex $curArg] == "as"} {
  210.                 incr curArg           
  211.                 set symbolicName [lindex $args $curArg]
  212.             } elseif {[lindex $curArg] == "pos"} {
  213.                 set hasPos 1
  214.                 incr curArg
  215.                 set xPos [lindex $args $curArg]
  216.                 incr curArg
  217.                 set yPos [lindex $args $curArg]
  218.                 incr curArg
  219.                 set zPos [lindex $args $curArg]
  220.             }
  221.         }
  222.     }
  223.  
  224.     # get the full filename for the encounter file
  225.     set partDir [/game/handler/book.getcurrentpartdir]
  226.  
  227.     # All cinematic are placed here
  228.     if {[exists /game/cinematics] == 0} {
  229.     new nroot /game/cinematics
  230.     }
  231.  
  232.     # Load cinematic sequences for encounter if any exist
  233.     set cinematicFile ""
  234.     append cinematicFile "$partDir" "/cinematics/" "$filename"
  235.     if {[file exists $cinematicFile] == 1} {
  236.         source $cinematicFile
  237.     }
  238.  
  239.     # load the encounter
  240.     set encounterFile ""
  241.     append encounterFile "$partDir" "/encounters/" "$filename"
  242.     set clan [/world.loadencounter $encounterFile]
  243.  
  244.     # optionally position it
  245.     if {$hasPos} {
  246.         $clan.setposition $xPos $yPos $zPos
  247.     }
  248.  
  249.     # optionally set symbolic name
  250.     if {$symbolicName != ""} {
  251.         $clan.setrealname $symbolicName
  252.     }
  253.  
  254. #    puts "<- loadencounter"
  255. }
  256.  
  257. #-------------------------------------------------------------------------------
  258. #   finishpart
  259. #
  260. #   Finish the current part and activate the next part. Slowly fade out audio
  261. #-------------------------------------------------------------------------------
  262. proc finishpart {} {
  263.     oneshottimer 3 _partfinished
  264.     /sys/servers/audio.flushaudio 3 3    
  265.     newv chptr_fadeout
  266. }
  267.  
  268. #-------------------------------------------------------------------------------
  269. #   startpart
  270. #
  271. #   Start with fadein.
  272. #-------------------------------------------------------------------------------
  273.  
  274. proc startpart {} {    
  275.     newv chptr_fadein
  276. }
  277.  
  278. #-------------------------------------------------------------------------------
  279. #   timer seconds event [as symbolicName]
  280. #
  281. #   Creates an infinite timer which throws an event every number
  282. #   of seconds.
  283. #   Please make sure the the environment setting is already loaded
  284. #   before creating any timers because all timer objects are created
  285. #   in the environment clan!!!
  286. #-------------------------------------------------------------------------------
  287. proc timer {seconds event args} {
  288.  
  289.     # get the environemt clan
  290.     set clan [/world.getenvironmentclan]
  291.  
  292.     # parse optional args
  293.     set numArgs [llength $args]
  294.     set symbolicName ""
  295.     if {$numArgs > 0} {
  296.         for {set curArg 0} {$curArg < $numArgs} {incr curArg} {
  297.             if {[lindex $args $curArg] == "as"} {
  298.                 incr curArg    
  299.                 set symbolicName [lindex $args $curArg]
  300.             }
  301.         }
  302.     }
  303.  
  304.     # create a t_timer object
  305.     set t [$clan.createvehicle t_timer]
  306.     $t.setthrowevents true
  307.     $t.seteventslot timer "$event"
  308.     $t.setnumcycles 0
  309.     $t.setcycletime $seconds
  310.     if {$symbolicName != ""} {
  311.         $t.setsymbolicname $symbolicName
  312.     }
  313. }
  314.  
  315. #-------------------------------------------------------------------------------
  316. #   oneshottimer seconds event [as symbolicName]
  317. #
  318. #   Creates an oneshot timer which throws exactly one event and
  319. #   then self-destructs.
  320. #   Please make sure the the environment setting is already loaded
  321. #   before creating any timers because all timer objects are created
  322. #   in the environment clan!!!
  323. #-------------------------------------------------------------------------------
  324. proc oneshottimer {seconds event args} {
  325.     
  326.     # get the environemt clan
  327.     set clan [/world.getenvironmentclan]
  328.  
  329.     # parse optional args
  330.     set numArgs [llength $args]
  331.     set symbolicName ""
  332.     if {$numArgs > 0} {
  333.         for {set curArg 0} {$curArg < $numArgs} {incr curArg} {
  334.             if {[lindex $args $curArg] == "as"} {
  335.                 incr curArg           
  336.                 set symbolicName [lindex $args $curArg]
  337.             }
  338.         }
  339.     }
  340.  
  341.     # create a t_timer object
  342.     set t [$clan.createvehicle t_timer]
  343.     $t.setthrowevents true
  344.     $t.seteventslot timer "$event"
  345.     $t.setnumcycles 1
  346.     $t.setcycletime $seconds
  347.     if {$symbolicName != ""} {
  348.         $t.setsymbolicname $symbolicName
  349.     }
  350. }
  351.  
  352. #-------------------------------------------------------------------------------
  353. #   oneshotaction seconds action
  354. #
  355. #   analog onmeshot-timer, aber mit aktion (script)
  356. #-------------------------------------------------------------------------------
  357. proc oneshotaction {seconds action} {
  358.     
  359.     # get the environemt clan
  360.     set clan [/world.getenvironmentclan]
  361.  
  362.     if {$clan != "null"} {
  363.         # create a t_timer object
  364.         set t [$clan.createvehicle t_timer]
  365.         $t.setthrowevents true
  366.         $t.setaction "$action"
  367.         $t.setnumcycles 1
  368.         $t.setcycletime $seconds
  369.     }
  370. }
  371.  
  372. #-------------------------------------------------------------------------------
  373. #   looptimer numloops seconds event [as symbolicName]
  374. #
  375. #   Creates an loop timer which throws exactly $numloop events and
  376. #   then self-destructs.
  377. #   Please make sure the the environment setting is already loaded
  378. #   before creating any timers because all timer objects are created
  379. #   in the environment clan!!!
  380. #-------------------------------------------------------------------------------
  381. proc looptimer {numloops seconds event args} {
  382.     
  383.     # get the environemt clan
  384.     set clan [/world.getenvironmentclan]
  385.  
  386.     # parse optional args
  387.     set numArgs [llength $args]
  388.     set symbolicName ""
  389.     if {$numArgs > 0} {
  390.         for {set curArg 0} {$curArg < $numArgs} {incr curArg} {
  391.             if {[lindex $args $curArg] == "as"} {
  392.                 incr curArg           
  393.                 set symbolicName [lindex $args $curArg]
  394.             }
  395.         }
  396.     }
  397.  
  398.     # create a t_timer object
  399.     set t [$clan.createvehicle t_timer]
  400.     $t.setthrowevents true
  401.     $t.seteventslot timer "$event"
  402.     $t.setnumcycles $numloops
  403.     $t.setcycletime $seconds
  404.     if {$symbolicName != ""} {
  405.         $t.setsymbolicname $symbolicName
  406.     }
  407. }
  408.  
  409. #-------------------------------------------------------------------------------
  410. #   activate symbolicName
  411. #
  412. #   Invoke ".setthrowevents true" on all objects with a matching symbolic
  413. #   name.
  414. #-------------------------------------------------------------------------------
  415. proc activate {symbolicName} {
  416.  
  417.     puts "-> activate $symbolicName"
  418.  
  419.     set curObj ""
  420.     for {set curObj [/world.findobjectbysymbolicname $symbolicName]}\
  421.         {$curObj != "null"}\
  422.         {set curObj [/world.findnextobjectbysymbolicname $curObj $symbolicName]}\
  423.     {
  424.         $curObj.setthrowevents true
  425.     }
  426.  
  427.     puts "-> activate $symbolicName"
  428. }
  429.  
  430. #-------------------------------------------------------------------------------
  431. #   deactivate symbolicName
  432. #
  433. #   Invoke ".setthrowevents false" on all objects with a matching symbolic
  434. #   name.
  435. #-------------------------------------------------------------------------------
  436. proc deactivate {symbolicName} {
  437.  
  438.     puts "-> deactivate $symbolicName"
  439.  
  440.     set curObj ""
  441.     for {set curObj [/world.findobjectbysymbolicname $symbolicName]}\
  442.         {$curObj != "null"}\
  443.         {set curObj [/world.findnextobjectbysymbolicname $curObj $symbolicName]}\
  444.     {
  445.         $curObj.setthrowevents false
  446.     }
  447.  
  448.     puts "-> deactivate $symbolicName"
  449. }
  450.  
  451. #-------------------------------------------------------------------------------
  452. #   setfaction symbolicName [player | enemy1 | enemy2 | enemy3 | enemy4]
  453. #
  454. #   Set faction of all clans which match the symbolicName
  455. #-------------------------------------------------------------------------------
  456. proc setfaction {symbolicName faction} {
  457.  
  458.     # convert faction string into number
  459.     set factionId 0
  460.     if {$faction == "player"} {
  461.         set factionId 0
  462.     } elseif {$faction == "enemy1"} {
  463.         set factionId 1
  464.     } elseif {$faction == "enemy2"} {
  465.         set factionId 2
  466.     } elseif {$faction == "enemy3"} {
  467.         set factionId 3
  468.     } elseif {$faction == "enemy4"} {
  469.         set factionId 4
  470.     } else {
  471.         # undefined factionId, set to 128 for now
  472.         set factionId 128
  473.     }
  474.  
  475.     set curClan ""
  476.     for {set curClan [/world.findclanbysymbolicname $symbolicName]}\
  477.         {$curClan != "null"}\
  478.         {set curClan [/world.findnextclanbysymbolicname $curClan $symbolicName]}\
  479.     {
  480.         puts "$curClan.setfaction $factionId"
  481.         $curClan.setfaction $factionId
  482.     }
  483. }
  484.  
  485. #-------------------------------------------------------------------------------
  486. #   putevent event
  487. #
  488. #   Manually throw an event.
  489. #-------------------------------------------------------------------------------
  490. proc putevent {event} {
  491.     /game/handler/event.putevent $event
  492. }
  493.  
  494. #-------------------------------------------------------------------------------
  495. #   daytime hours minutes
  496. #
  497. #   Set the game's time of day.
  498. #-------------------------------------------------------------------------------
  499. proc daytime {hours mins} {
  500.  
  501.     set seconds [expr ($hours * 3600) + ($mins * 60)]
  502.     /world.settimeofday $seconds
  503. }
  504.  
  505. #-------------------------------------------------------------------------------
  506. #   resetplayerat
  507. #
  508. #   Reset the player's island to position x y z and the players character
  509. #   to some predefined respawn point on the island. Used to position
  510. #   the island at the beginning of a part.
  511. #-------------------------------------------------------------------------------
  512. proc resetplayerat { x y z } {
  513.  
  514.     # find the player's towncenter
  515.     set userClan [/world.getuserclan]
  516.     if {$userClan != "null"} {
  517.  
  518.         # set player island to x,y,z
  519.         set playerIsland [$userClan.getplayerisland]
  520.         $playerIsland.setposition  $x $y $z
  521.         $playerIsland.setdirection 0 0 0
  522.  
  523.         # position maennel at towncenter
  524.         set player [$userClan.getmaennel]
  525.         
  526.         # reset handelt by world
  527.         /world.resetuserclan
  528.         
  529.         # some things must be done separatly
  530.         # war mal swim - bug beim drehen der playerisland   
  531.         $player.setstate stand
  532.         #input_stand                           
  533.  
  534.         # update the save point
  535.         savepoint
  536.     }
  537. }
  538.  
  539.  
  540. proc resetplayer {} {
  541.     resetplayerat 0 0 0
  542. }
  543.  
  544. #-------------------------------------------------------------------------------
  545. #   simpleresetat
  546. #
  547. #   Resets only most important things, world and Island.
  548. #   To use in levels with introcinematic, that place and animate
  549. #   the playercharacter via cinedummy so that the procedure doesn't affect
  550. #   players position.
  551. #-------------------------------------------------------------------------------
  552. proc simpleresetat {x y z} {
  553.  
  554.     # find the player's towncenter
  555.     set userClan [/world.getuserclan]
  556.     if {$userClan != "null"} {
  557.  
  558.         # set player island to x,y,z
  559.         set playerIsland [$userClan.getplayerisland]
  560.         $playerIsland.setposition  $x $y $z
  561.         $playerIsland.setdirection 0 0 0
  562.  
  563.         # position maennel at towncenter
  564.         # set player [$userClan.getmaennel]
  565.         
  566.         # reset handelt by world
  567.         /world.resetuserclan
  568.         
  569.         # some things must be done separatly
  570.         #$player.setstate swimming
  571.         #input_swimming                           
  572.  
  573.         # update the save point
  574.         savepoint
  575.     }
  576. }
  577.  
  578. #-------------------------------------------------------------------------------
  579. #   destroy symbolicName
  580. #
  581. #   Invoke ".reduceenergy 10000000" on all objects with a matching symbolic
  582. #   name.
  583. #-------------------------------------------------------------------------------
  584. proc killsymbol {symbolicName} {
  585.  
  586.     puts "-> destroy $symbolicName"
  587.  
  588.     set curObj ""
  589.     for {set curObj [/world.findobjectbysymbolicname $symbolicName]}\
  590.         {$curObj != "null"}\
  591.         {set curObj [/world.findnextobjectbysymbolicname $curObj $symbolicName]}\
  592.     {
  593.         #puts "destroy: $curObj"
  594.         $curObj.reduceenergy 10000000
  595.     }
  596.  
  597.     puts "<- destroy $symbolicName"
  598. }
  599.  
  600. #-------------------------------------------------------------------------------
  601. #   support method. searches for navpoint with specified symbolic name
  602. #-------------------------------------------------------------------------------
  603. proc getnavpoint {symbolicName} {
  604.  
  605.     set navPoint [/world.findobjectbysymbolicname $symbolicName]
  606.     if {$navPoint == "null"} {
  607.         return "null"
  608.     } else {
  609.         if {"false" == [$navPoint.isvehicleclass "abstract.navpoint"]} {
  610.             return "null"
  611.         } else {
  612.             return $navPoint
  613.         }
  614.     }
  615. }
  616.  
  617. #-------------------------------------------------------------------------------
  618. #   enableNavPoint symbolicName
  619. #
  620. #   tries to find Navpoint with symbolic name and enables it. Stops if navpoint
  621. #   does not exist or "symbolicName" is no navpoint. Allows multiple enable calls
  622. #
  623. #   04-Apr-02   floh    notify feedback handler 
  624. #-------------------------------------------------------------------------------
  625. proc enablenavpoint {symbolicName} {
  626.     set navPoint [getnavpoint $symbolicName]
  627.     
  628.     if {$navPoint != "null"} {
  629.         $navPoint.enable
  630.         /game/handler/feedback.registernavpointenabled        
  631.     } else {
  632.         puts "***** NAVPOINT $symbolicName EXISTIERT NICHT ********"
  633.     }
  634. }
  635.  
  636. proc enablenavpoint_mute {symbolicName} {
  637.     set navPoint [getnavpoint $symbolicName]
  638.     
  639.     if {$navPoint != "null"} {
  640.         $navPoint.enable
  641.     } else {
  642.         puts "***** NAVPOINT $symbolicName EXISTIERT NICHT ********"
  643.     }
  644. }
  645.  
  646. proc enablenavpointafter {time symbolicName} {
  647.     set action "enablenavpoint $symbolicName"
  648.     oneshotaction $time  $action
  649. }
  650.  
  651. proc enablenavpointafter_mute {time symbolicName} {
  652.     set action "enablenavpoint_mute $symbolicName"
  653.     oneshotaction $time  $action
  654. }
  655.  
  656. #-------------------------------------------------------------------------------
  657. #   disableNavPoint symbolicName
  658. #
  659. #   tries to find Navpoint with symbolic name and disables it. Stops if navpoint
  660. #   does not exist or "symbolicName" is no navpoint. Allows multiple enable calls
  661. #-------------------------------------------------------------------------------
  662. proc disablenavpoint {symbolicName} {
  663.  
  664.     set navPoint [getnavpoint $symbolicName]
  665.     set station [[/world.getuserclan].getplayerisland]
  666.     set targetNavPoint [$station.getislandtarget]
  667.     if {$navPoint != "null"} {
  668.         if {$navPoint == $targetNavPoint} {  
  669.             $station.setislandtarget "null"
  670.         }
  671.         $navPoint.disable
  672.     } else {
  673.         puts "***** NAVPOINT $symbolicName EXISTIERT NICHT ********"
  674.     }
  675. }
  676.  
  677. #-------------------------------------------------------------------------------
  678. #   playerhasitem symbolicName
  679. #
  680. #   Seeks the whole inventory to find symbolicName
  681. #-------------------------------------------------------------------------------
  682. proc playerhasitem {symbolicName} {
  683.  
  684.     puts "-> playerhasitem $symbolicName"
  685.  
  686.     set clan     [/world.getuserclan]
  687.     set maennel  [$clan.getmaennel]
  688.     set itemlist [$maennel.artefactlist]
  689.     set result   "false"
  690.     
  691.     foreach curItem $itemlist {
  692.         set curItemsymbolicName [$curItem.getsymbolicname]
  693.         
  694.         if { [string match $symbolicName $curItemsymbolicName] } {
  695.             set result "true"
  696.             break
  697.         }
  698.     }
  699.  
  700.     puts "<- playerhasitem $symbolicName $result"
  701.     return $result
  702. }
  703.  
  704. #-------------------------------------------------------------------------------
  705. #   removeplayeritem symbolicName
  706. #
  707. #   Seeks the whole inventory to find symbolicName and remove it
  708. #-------------------------------------------------------------------------------
  709. proc removeplayeritem {symbolicName} {
  710.  
  711.     puts "-> removeplayeritem $symbolicName"
  712.  
  713.     set clan     [/world.getuserclan]
  714.     set maennel  [$clan.getmaennel]
  715.     set itemlist [$maennel.artefactlist]
  716.     set result   "false"
  717.     
  718.     foreach curItem $itemlist {
  719.         set curItemsymbolicName [$curItem.getsymbolicname]
  720.         
  721.         if { [string match $symbolicName $curItemsymbolicName] } {
  722.             $clan.releasevehicle $curItem
  723.             set result "true"
  724.             break
  725.         }
  726.     }
  727.  
  728.     puts "<- playerhasitem $symbolicName $result"
  729.     return $result
  730. }
  731.  
  732. #-------------------------------------------------------------------------------
  733. #   removeplayeritemandslot symbolicName
  734. #
  735. #   Remove an artefact from the belt, release it (via removeplayeritem),
  736. #   and if the operation was successful, reduce number of belt slots by one.
  737. #-------------------------------------------------------------------------------
  738. proc removeplayeritemandslot {symbolicName} {
  739.  
  740.     puts "-> removeplayeritemandslot $symbolicName"
  741.  
  742.     set result [removeplayeritem $symbolicName]
  743.     if {$result == "true"} {
  744.         set maennel [[/world.getuserclan].getmaennel]
  745.         set curMaxArtefacts [$maennel.getmaxartefacts]
  746.         if {$curMaxArtefacts > 1} {
  747.             incr curMaxArtefacts -1
  748.             $maennel.setmaxartefacts $curMaxArtefacts
  749.         }
  750.     }
  751. }
  752.  
  753. #-------------------------------------------------------------------------------
  754. #   countbysymbolicname symbolicName
  755. #
  756. #   Counts Objects with Symbolic Name
  757. #-------------------------------------------------------------------------------
  758. proc countbysymbolicname {symbolicName} {
  759.  
  760.     puts "-> countbysymbolicname $symbolicName"
  761.  
  762.     set clan     [/world.getuserclan]
  763.     set maennel  [$clan.getmaennel]
  764.     set result   "0"
  765.  
  766.     set curObj ""
  767.     for {set curObj [/world.findobjectbysymbolicname $symbolicName]}\
  768.         {$curObj != "null"}\
  769.         {set curObj [/world.findnextobjectbysymbolicname $curObj $symbolicName]}\
  770.     {
  771.         incr result 1
  772.     }
  773.  
  774.     puts "<- countbysymbolicname $symbolicName $result"
  775.  
  776.     return $result
  777. }
  778.  
  779. #-------------------------------------------------------------------------------
  780. #   setclanenergyzero symbolicName
  781. #
  782. #   Set Clan with symbolicName Energy to Zero
  783. #-------------------------------------------------------------------------------
  784. proc setclanenergyzero {symbolicName} {
  785.     
  786.     puts "-> setclanenergyzero $symbolicName"
  787.        
  788.     for {set curObj [/world.findclanbysymbolicname  $symbolicName]}\
  789.         {$curObj != "null"}\
  790.         {set curObj [/world.findnextclanbysymbolicname $curObj $symbolicName]}\
  791.     {
  792.          $curObj.setcurrentenergy 0
  793.     }
  794.  
  795.     puts "<- setclanenergyzero $symbolicName"
  796. }
  797.  
  798. #-------------------------------------------------------------------------------
  799. #   maennelcanfly [true|false]
  800. #
  801. #   Turn flying ability of maennel on/off.
  802. #-------------------------------------------------------------------------------
  803. proc maennelcanfly {flag} {
  804.  
  805.     puts "-> maennelcanfly $flag"
  806.  
  807.     # get the user maennel
  808.     set userClan [/world.getuserclan]
  809.     set maennel [$userClan.getmaennel]
  810.     $maennel.setcanfly $flag
  811.  
  812.     if {"true" == $flag} {
  813.         # report to feedback handler
  814.         # wird vom boosterartefakt selbst gefeuert
  815.         # /game/handler/feedback.registermaennelcanfly
  816.     }
  817. }
  818.  
  819. #-------------------------------------------------------------------------------
  820. #   givetask symbolicName task parameter
  821. #
  822. #   universelles settask fuer ein Objekt
  823. #   symbolicName            wer soll das machen (z.B. "mueller")
  824. #   task                    was soll er machen (z.B. "attack")
  825. #   parameter               was soll er bearbeiten (z.B. "meier")
  826. #
  827. #   27-Feb-02   floh    + all objects which match the symbolic name get the task
  828. #                       + no longer causes game to quit when no matching object
  829. #                         exists
  830. #-------------------------------------------------------------------------------
  831. proc givetask {symbolicName task parameter} {
  832.  
  833. puts "*** givetask $symbolicName $task $parameter"
  834.     set curObj ""
  835.     for {set curObj [/world.findobjectbysymbolicname $symbolicName]}\
  836.         {$curObj != "null"}\
  837.         {set curObj [/world.findnextobjectbysymbolicname $curObj $symbolicName]}\
  838.     {
  839.         if {[$curObj.isvehicleclass "concret.technical.static.building.flakbuilding"] == "true"} {
  840.             set curObjproduct [$curObj.getproduct 0]
  841.             if {$curObjproduct != "null"} {
  842.                 $curObjproduct.settask $task $parameter
  843.                 puts "ist eine flak $task $parameter und gibt befehl an turret $curObjproduct"
  844.             }
  845.         } elseif {[$curObj.isvehicleclass "concret.technical.static.building.garage"] == "true"} {
  846.             set curObjproduct [$curObj.getproduct 0]
  847.             if {$curObjproduct != "null"} {
  848.                 $curObjproduct.settask $task $parameter
  849.                 puts "ist eine garage mit $task $parameter und gibt befehl an flieger $curObjproduct"
  850.             }
  851.         }
  852.         $curObj.settask $task $parameter
  853.         puts "--- task $task given to object $curObj"
  854.     }
  855. }
  856.  
  857. #-------------------------------------------------------------------------------
  858. #   killafter time symbolicname
  859. #
  860. #   Fa▀t den hΣufig gebrauchten Zusammenhang, da▀ etwas nach einer bestimmten
  861. #   Zeit gekillt werden soll zusammen
  862. #   (eventname ist nur aus Kompatibilaetsgruenden noch da)
  863. #-------------------------------------------------------------------------------
  864. proc killafter {time symbolicname {eventname "meier"}} {
  865.  
  866.     set action "killsymbol $symbolicname"
  867.     oneshotaction $time  $action
  868. }
  869.  
  870. #-------------------------------------------------------------------------------
  871. #   loadafter time encountername
  872. #
  873. #   Fa▀t den hΣufig gebrauchten Zusammenhang, da▀ etwas nach einer bestimmten
  874. #   Zeit geladen werden soll zusammen (encounter)
  875. #-------------------------------------------------------------------------------
  876. proc loadafter {time encountername {eventname "mueller"}} {
  877.  
  878.     set action "loadencounter $encountername"
  879.     oneshotaction $time  $action
  880. }
  881.  
  882. #-------------------------------------------------------------------------------
  883. #   islandmoveto navpointname
  884. #
  885. #   02-Apr-02   floh    Bugfix: hat nicht den Fall abgehandelt, dass es
  886. #                       den Navpoint ueberhaupt nicht gibt!
  887. #   29-Jul-02   floh    hat auch funktioniert, wenn ueberhaupt kein Navtower
  888. #                       aufgebaut war
  889. #-------------------------------------------------------------------------------
  890.  
  891. proc islandmoveto {navpointname} {
  892.  
  893.     set target [/world.findobjectbysymbolicname $navpointname]
  894.     set userClan [/world.getuserclan]
  895.     if {($target != "null") && ($userClan != "null")} {
  896.         set station [$userClan.getplayerisland]
  897.         if {$station != "null"} {
  898.             enablenavpoint_mute $navpointname
  899.             $station.setislandtarget $target
  900.  
  901.             # check if there is any navtower in house state in the user clan
  902.             set hasValidNavTower 0
  903.             for {set curObj [$userClan.gethead]} {$curObj != "null"} {set curObj [$curObj.getsucc]} {
  904.                 if {[$curObj.isvehicleclass "concret.technical.static.building.islanddrive"]} {
  905.                     if {[$curObj.getstate] == "house"} {
  906.                         set hasValidNavTower 1
  907.                     }
  908.                 }
  909.             }
  910.         }
  911.  
  912.         if {$hasValidNavTower} {
  913.             $station.setislanddriveworking true
  914.         }
  915.  
  916.     } else {
  917.         puts "*** NAVPOINT $navpointname EXISTIERT NICHT IN ROUTINE islandmoveto!!!"
  918.     }
  919. }
  920.  
  921. #-------------------------------------------------------------------------------
  922. #   setvar name value
  923. #
  924. #   Setzt eine Cookie-Variable auf einen Wert. Cookies bleiben waehrend des
  925. #   gesamten Spiels erhalten (auf ueber Part- und Chapter-Grenzen hinweg)
  926. #   und werden bei Savegames mit abgespeichert und geladen.
  927. #-------------------------------------------------------------------------------
  928. proc setvar {name value} {
  929.     /game/handler/cookie.setcookie $name $value
  930. }
  931.  
  932. #-------------------------------------------------------------------------------
  933. #   getvar name value
  934. #
  935. #   Fragt den Wert einer Cookie-Variablen ab. Falls die Cookie Variable nicht
  936. #   existiert wird ein ":null:" String zurueckgegeben.
  937. #-------------------------------------------------------------------------------
  938. proc getvar {name} {
  939.     return [/game/handler/cookie.getcookie $name]
  940. }
  941.  
  942. #-------------------------------------------------------------------------------
  943. #   clearvar name
  944. #
  945. #   Markiert eine Variable als temporaer, so dass sie am Ende eines Parts 
  946. #   automatisch geloescht wird
  947. #-------------------------------------------------------------------------------
  948. proc clearvar {name} {
  949.     /game/handler/cookie.marktemporary $name
  950. }
  951.  
  952. #-------------------------------------------------------------------------------
  953. #   existsvar name
  954. #
  955. #   Gibt "true" zurueck falls die Cookie-Variable existiert, andernfalls
  956. #   "false".
  957. #-------------------------------------------------------------------------------
  958. proc existsvar {name} {
  959.     return [/game/handler/cookie.cookieexists $name]
  960. }
  961.  
  962. #-------------------------------------------------------------------------------
  963. #   wind stΣrke
  964. #
  965. #    Stellt die WindstΣrke ein...
  966. #-------------------------------------------------------------------------------
  967. proc wind {strength} {
  968.     /sys/servers/channel.setchannel1f windstrength $strength
  969.     return
  970. }
  971.  
  972. #-------------------------------------------------------------------------------
  973. #   savepoint
  974. #   Speichert Spiel in speziellen savepoint.n Save-Slot ab.
  975. #-------------------------------------------------------------------------------
  976. proc savepoint {} {
  977.     /world.announcesavepoint "home:save/savepoint"
  978. }
  979.  
  980. #-------------------------------------------------------------------------------
  981. #   loadsavepoint
  982. #   Lade den aktuellen Save-Point.
  983. #-------------------------------------------------------------------------------
  984. proc loadsavepoint {} {
  985.     /world.announceloadsavepoint "home:save/savepoint.n"
  986. }
  987.  
  988. #-------------------------------------------------------------------------------
  989. #   restartlevel
  990. #   Startet den aktuellen Part neu
  991. #-------------------------------------------------------------------------------
  992. proc restartlevel {} {
  993.     puts "*** RESTART LEVEL"
  994.  
  995.     set path [/sys/servers/file.manglepath "home:save"]
  996.     if {[file exists $path/restartpoint.n]} {
  997.         /world.loadgame $path/restartpoint.n
  998.     }
  999. }
  1000.  
  1001. #-------------------------------------------------------------------------------
  1002. #   playanimation symbolicName 
  1003. #
  1004. #  symbolicname der jeweiligen cinematic oder des CINdummy
  1005. #   
  1006. #-------------------------------------------------------------------------------
  1007. proc playanimation {symbolicName} {
  1008.     puts "-> animate CINEMATICDUMMY: $symbolicName"
  1009.  
  1010.     # find cinedummy object
  1011.     set cineDummy [/world.findobjectbysymbolicname $symbolicName]
  1012.     if {$cineDummy != "null"} {
  1013.         
  1014.         puts "-> cinematic TARGET OBJECT: [$cineDummy.gettargetsymbolicname]"
  1015.  
  1016.         # find target object
  1017.         set cineTargetSymbolic [$cineDummy.gettargetsymbolicname]
  1018.         set cineSequence [$cineDummy.getcinematicsequencename]
  1019.         set cineTarget [/world.findobjectbysymbolicname $cineTargetSymbolic]
  1020.         if {$cineTarget != "null"} {
  1021.  
  1022.             set cineTargetState [$cineTarget.getstate]
  1023.             set action ""
  1024.             
  1025.             if {$cineTargetState == "explode"} {
  1026.  
  1027.                 # target is exploding: ignore
  1028.                 return
  1029.  
  1030.             } else {
  1031.                 # normal case:
  1032.                 set action "$cineTarget.setcinematicsequence $cineSequence; $cineTarget.setstate cinematic"
  1033.             }
  1034.             oneshotaction 0.01 $action
  1035.         }
  1036.     } else {
  1037.         puts " ! WARNUNG ! - cinematicDUMMY nicht gefunden (symbolicName = $symbolicName)!!!"
  1038.     }
  1039. }
  1040.  
  1041. #-------------------------------------------------------------------------------
  1042. #   playanimationafter time symbolicName 
  1043. #-------------------------------------------------------------------------------
  1044. proc playanimationafter {time symbolicName} {
  1045.     set action "playanimation $symbolicName"
  1046.     oneshotaction $time $action
  1047. }
  1048.  
  1049. #-------------------------------------------------------------------------------
  1050. #   stopanimation symbolicName 
  1051. #
  1052. #  symbolicname - der jeweiligen cinematic oder des cinematicdummys 
  1053. #  ( der ja targetsymbolicname hat)
  1054. #-------------------------------------------------------------------------------
  1055. proc stopanimation {symbolicName} {
  1056.     puts "-> STOP animattion CINEMATICDUMMY: $symbolicName"
  1057.     set pos [/world.findobjectbysymbolicname $symbolicName]
  1058.     if {$pos != "null"} {
  1059.         puts "-> cinematic OBJECT: [$pos.gettargetsymbolicname] : STOP"
  1060.         $pos.announcestate "normal"
  1061.     } else {
  1062.         puts " ! WARNUNG ! - cinematicDUMMY nicht gefunden !!!"
  1063.     }
  1064. }
  1065.  
  1066. #-------------------------------------------------------------------------------
  1067. #   playsound fileName
  1068. #
  1069. #   Play a high priority oneshot wav file.
  1070. #   Example:
  1071. #
  1072. #   playsound lib:sound/wolkentanz.wav
  1073. #-------------------------------------------------------------------------------
  1074. proc playsound {filename} {
  1075.     set action "/world.playsound $filename "
  1076.     oneshotaction 0.01 $action
  1077. }
  1078.  
  1079. #-------------------------------------------------------------------------------
  1080. #   playfeedbacksound fileName
  1081. #
  1082. #   Das playsound ist ja jetzt komplexer, wg oneshotaction -> also
  1083. #   gibt es jetzt noch ein einfacheres playfeedbacksound, welches wie frueher
  1084. #   funktioniert.
  1085. #-------------------------------------------------------------------------------
  1086. proc playfeedbacksound {filename} {
  1087.     /world.playsound $filename
  1088. }
  1089.  
  1090. #-------------------------------------------------------------------------------
  1091. #   findsymbol {symbolicName}
  1092. #
  1093. #   sucht object nach symbolicname und wenn nicht vorhanden meldung 
  1094. #   
  1095. #-------------------------------------------------------------------------------
  1096. proc findsymbol {symbolicName} {
  1097.     set pos [/world.findobjectbysymbolicname $symbolicName]
  1098.     if {$pos != "null"} {
  1099.         puts "position von: $symbolicName -> $pos"
  1100.         return $pos
  1101.     } else {
  1102.         puts " ! WARNUNG ! $symbolicName NICHT gefunden !!!"
  1103.     }
  1104. }
  1105.  
  1106. #-------------------------------------------------------------------------------
  1107. #   findclan {symbolicName}
  1108. #
  1109. #   sucht clan nach symbolicname und wenn nicht vorhanden meldung 
  1110. #   
  1111. #-------------------------------------------------------------------------------
  1112. proc findclan {symbolicName} {
  1113.     set pos [/world.findclanbysymbolicname $symbolicName]
  1114.     if {$pos != "null"} {
  1115.         puts "position von: $symbolicName -> $pos"
  1116.         return $pos
  1117.     } else {
  1118.         puts " ! WARNUNG ! $symbolicName NICHT gefunden !!!"
  1119.     }
  1120. }
  1121.  
  1122. #-------------------------------------------------------------------------------
  1123. #   switchoffnav {symbolicName} {symbolicName}
  1124. #
  1125. #   von den zwei ⁿbergebenen navpoints wird der nicht angefahrene disabled 
  1126. #   
  1127. #-------------------------------------------------------------------------------
  1128. proc switchoffnav {nav1Name nav2Name} {
  1129.     set nav1pos [/world.findobjectbysymbolicname $nav1Name]
  1130.     set nav2pos [/world.findobjectbysymbolicname $nav2Name]
  1131.     if { ($nav1pos != "null") &&  ($nav2pos != "null") } {
  1132.         set station [[/world.getuserclan].getplayerisland]
  1133.         set ziel [$station.getislandtarget]
  1134.         set zielsymbolicName [$ziel.getsymbolicname]
  1135.         if {$zielsymbolicName == $nav1Name} {
  1136.             puts "ziel: $nav1Name -> ausgeschalten: $nav2Name"
  1137.             disablenavpoint $nav2Name
  1138.         }
  1139.         if {$zielsymbolicName == $nav2Name} {
  1140.             puts "ziel: $nav2Name -> ausgeschalten: $nav1Name"
  1141.             disablenavpoint $nav1Name
  1142.         }
  1143.     } else {
  1144.         puts " ! WARNUNG ! $symbolicName NICHT gefunden !!!"
  1145.     }
  1146. }
  1147.  
  1148. #-------------------------------------------------------------------------------
  1149. #   Zeug zum an- und abschalten von Emittern
  1150. #-------------------------------------------------------------------------------
  1151. proc toggleemitter {symName onoff} {
  1152.     set obj ""
  1153.     set found 0
  1154.     for {set obj [/world.findobjectbysymbolicname $symName]}\
  1155.          {$obj != "null"}\
  1156.          {set obj [/world.findnextobjectbysymbolicname $obj $symName]} {
  1157.  
  1158.         set found 1
  1159.         $obj.enableemitting $onoff
  1160.     }
  1161.  
  1162.     if {$found == "0"} { 
  1163.         puts " ! WARNUNG ! $symName NICHT gefunden !!!"
  1164.     }
  1165. }
  1166.  
  1167. proc enableemitter {symName} {
  1168.     toggleemitter $symName true
  1169. }
  1170.  
  1171. proc disableemitter {symName} {
  1172.     toggleemitter $symName false
  1173. }
  1174.  
  1175. #-------------------------------------------------------------------------------
  1176. #   Game over erzwingen
  1177. #-------------------------------------------------------------------------------
  1178. proc forcegameover {} {
  1179. #    /world.unsethandcontrol
  1180. #    /sys/servers/menuhandler.openmenu ingame_endgame
  1181.  
  1182.     # kill maennel
  1183.     set userClan [/world.getuserclan]
  1184.     if {$userClan != "null"} {    
  1185.         set maennel [$userClan.getmaennel]
  1186.         if {$maennel != "null"} {
  1187.             $maennel.reduceenergy 10000000
  1188.         }
  1189.     }
  1190. }
  1191.  
  1192. #-------------------------------------------------------------------------------
  1193. #   Zeug zum an- und abschalten von Fabriken
  1194. #-------------------------------------------------------------------------------
  1195. proc togglefactory {symName onoff} {
  1196.     set obj [/world.findobjectbysymbolicname $symName]
  1197.     if {$obj == "null"} {
  1198.         puts " ! WARNUNG ! $symName NICHT gefunden !!!"
  1199.         return
  1200.     }
  1201.     $obj.setsleepmode $onoff
  1202. }
  1203.  
  1204. proc enablefactory {symName} {
  1205.     togglefactory $symName false
  1206. }
  1207.  
  1208. proc disablefactory {symName} {
  1209.     togglefactory $symName true
  1210. }
  1211.  
  1212. #-------------------------------------------------------------------------------
  1213. #   zum entfernen von objekten aus der szene 
  1214. #-------------------------------------------------------------------------------
  1215. proc releasesymbol {symbolicName} {
  1216.     set obj [/world.findobjectbysymbolicname $symbolicName]
  1217.     if {$obj != "null"} {
  1218.         $obj.setremoveable true
  1219.         set objclan [$obj.getclan]
  1220.         $objclan.releasevehicle $obj  
  1221.     } else {
  1222.         puts " ! WARNUNG ! $symbolicName NICHT gefunden !!!"
  1223.     }
  1224. }
  1225.  
  1226. proc release_clan {symbolicName} {
  1227.     set obj [/world.findclanbysymbolicname $symbolicName]
  1228.     if {$obj != "null"} {
  1229.         /world.releaseclan $obj
  1230.     } else {
  1231.         puts " ! WARNUNG ! $symbolicName NICHT gefunden !!!"
  1232.     }
  1233. }
  1234. #-------------------------------------------------------------------------------
  1235. #   zum entfernen von objekten aus der szene nach bestimmter zeit
  1236. #-------------------------------------------------------------------------------
  1237. proc releaseafter {time symbolicname {eventname "meier"}} {
  1238.     set action "releasesymbol $symbolicname"
  1239.     oneshotaction $time $action
  1240. }
  1241.  
  1242. #-------------------------------------------------------------------------------
  1243. #   artefact kann an bestimmten buildslot-Typ(1,2,3,4) gekoppelt werden
  1244. #   dh. das bauen ist dann auf diesem slot m÷glich
  1245. #-------------------------------------------------------------------------------
  1246. proc artefactmod {symbolicname buildslottyp} {
  1247.     set obj [/world.findobjectbysymbolicname $symbolicname]
  1248.     if {$obj != "null"} {
  1249.         set war [$obj.getbuildingclass]
  1250.         $obj.setbuildingclass $buildslottyp
  1251.         puts "TYPSWITCH FROM: $war TO: $buildslottyp"
  1252.     } else {
  1253.         puts " ! WARNUNG ! $symbolicName NICHT gefunden !!!"
  1254.     }
  1255. }
  1256.  
  1257. #-------------------------------------------------------------------------------
  1258. #   setplayerpos xPos yPos zPos yAngle
  1259. #
  1260. #   Saubere Maennel-Positionierungs-Routine, initialisiert Position/Blickrichtung,
  1261. #   setzt Speed auf 0 und koppelt evtl. von Insel ab.
  1262. #-------------------------------------------------------------------------------
  1263. proc setplayerpos {xPos yPos zPos yAngle} {
  1264.     set userClan [/world.getuserclan]
  1265.     if {$userClan != "null"} {
  1266.  
  1267.         # position maennel at towncenter
  1268.         set player [$userClan.getmaennel]
  1269.         $player.unlinkfromstation
  1270.         $player.setposition $xPos $yPos $zPos
  1271.         $player.setdirection 0 $yAngle 0
  1272.         $player.setspeed 0 0 0
  1273.         
  1274.         # reset collision system to flush preMove-Position
  1275.         #set curState [$player.getstate]
  1276.         #$player.setstate $curState
  1277.         $player.setstate "stand"
  1278.     }
  1279. }
  1280.  
  1281. #-------------------------------------------------------------------------------
  1282. #   missionobjective fileName (ohne Pfad)
  1283. #
  1284. #   Setzt den Namen der Bitmap, die als Mission Objective angezeigt wird
  1285. #   
  1286. #-------------------------------------------------------------------------------
  1287. proc missionobjective {name} {
  1288.     /game/handler/cookie.setcookie __objective $name
  1289. }
  1290.    
  1291. #-------------------------------------------------------------------------------
  1292. #   textmessage name
  1293. #
  1294. #   Setzt den Namen der Message, die angezeigt werden soll
  1295. #   
  1296. #-------------------------------------------------------------------------------
  1297. proc textmessage {name} {
  1298.     /sys/servers/menuhandler.showtextmessage "book:feedback/if_$name.bmp"
  1299. #-------------------------------------------------------------------------------
  1300. #   time display
  1301. #   
  1302. #-------------------------------------------------------------------------------
  1303. proc timer_display {time} {
  1304.     if { $time == 10 } {
  1305.         textmessage noch10sec
  1306.     }
  1307.     if { $time == 30 } {
  1308.         textmessage noch30sec
  1309.         set time 10
  1310.         oneshotaction 20 "timer_display $time"
  1311.     }
  1312.     if { $time == 1 } {
  1313.         textmessage noch01min
  1314.         set time 30
  1315.         oneshotaction 30 "timer_display $time"
  1316.     }
  1317.     if { $time == 2 } {
  1318.         textmessage noch02min
  1319.     }
  1320.     if { $time == 3 } {
  1321.         textmessage noch03min
  1322.     }
  1323.     if { $time == 4 } {
  1324.         textmessage noch04min
  1325.     }
  1326.     if { $time == 5 } {
  1327.         textmessage noch05min
  1328.     }
  1329.     if { $time == 6 } {
  1330.         textmessage noch06min
  1331.     }
  1332.     if { $time == 7 } {
  1333.         textmessage noch07min
  1334.     }
  1335.     if { $time == 8 } {
  1336.         textmessage noch08min
  1337.     }
  1338.     
  1339.     if { $time < 10 } {
  1340.        set time [expr $time-1]
  1341.        oneshotaction 60 "timer_display $time"
  1342.     }
  1343.  
  1344. #-------------------------------------------------------------------------------
  1345. # Enter Vehicle. 
  1346. #-------------------------------------------------------------------------------
  1347. proc entervehicle {who} {
  1348.  
  1349.     if {"null" == $who} {
  1350.         return
  1351.     }
  1352.     
  1353.     /world.sethandcontrol $who
  1354.     /world.setviewercarrier $who
  1355.     #input_possessingvehicle
  1356.     set userClan [/world.getuserclan]
  1357.     if {"null" != $userClan} {
  1358.         set maennel [$userClan.getmaennel]
  1359.         if {"null" != $maennel} {
  1360.             $maennel.setpossessingvehicle true
  1361.         }
  1362.     }
  1363. }
  1364.  
  1365. #-------------------------------------------------------------------------------
  1366. #   friendname
  1367. #
  1368. #   Liefert den Namen des Charakters, den der Spieler gewaehlt hat
  1369. #   (char_john, char_goliath oder char_susie
  1370. #   
  1371. #-------------------------------------------------------------------------------
  1372. proc friendname {} {
  1373.     set name [/game/handler/cookie.getcookie "_character"]
  1374.     return $name
  1375. }
  1376.  
  1377. #-------------------------------------------------------------------------------
  1378. #   countplayerflaks 
  1379. #
  1380. #   Liefert die anzahl der gebauten playerflaks zurueck
  1381. #   
  1382. #-------------------------------------------------------------------------------
  1383. proc countplayerflaks {} {
  1384.     set result 0
  1385.     for {set curObj [/world.findobjectbysymbolicname "playerflak"]}\
  1386.     {$curObj != "null"}\
  1387.     {set curObj [/world.findnextobjectbysymbolicname $curObj "playerflak"]}\
  1388.     {
  1389.         if { [$curObj.getartefactmode] == "false" } {
  1390.             incr result 1   
  1391.         }
  1392.     }
  1393.     puts "Anzahl gebauter FLAKS: $result"
  1394.     return $result
  1395. }
  1396.  
  1397. #-------------------------------------------------------------------------------
  1398. #   playerclanhasitem 
  1399. #
  1400. #   liefert "true" bzw "false" zurⁿck - checken der playerclans
  1401. #   
  1402. #-------------------------------------------------------------------------------
  1403. proc playerclanhasitem {symbolicName} {
  1404.  
  1405.     set clan [/world.getuserclan]
  1406.     set result   "false"
  1407.     
  1408.     for {set v [$clan.gethead]} {$v != "null"} {set v [$v.getsucc]} {
  1409.         if { [$v.getsymbolicname] == $symbolicName } {
  1410.             set result "true"
  1411.             break   
  1412.             puts "im clan"
  1413.         }
  1414.     }
  1415.     return $result
  1416. }
  1417. #-------------------------------------------------------------------------------
  1418. #   EOF
  1419. #-------------------------------------------------------------------------------
  1420.